home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / devtools / automake-1.0.tar.gz / automake-1.0.tar / automake-1.0 / tests / acoutput.test < prev    next >
Text File  |  1996-05-17  |  326b  |  19 lines

  1. #!/bin/sh
  2.  
  3. # Test for bug when AC_OUTPUT has 2 args on the same line, eg:
  4. #   AC_OUTPUT([Makefile automake tests/Makefile],[chmod +x automake])
  5.  
  6. . $srcdir/defs || exit 1
  7.  
  8. cat > configure.in << 'END'
  9. PACKAGE=nonesuch
  10. VERSION=nonesuch
  11. AC_ARG_PROGRAM
  12. AC_PROG_INSTALL
  13. AC_OUTPUT([Makefile], [true])
  14. END
  15.  
  16. : > Makefile.am
  17.  
  18. $AUTOMAKE
  19.